home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Camelot / Camelot 105 (1991-02)(Swedish User Group of Amiga)(SE)(PD)[WB].zip / Camelot 105 (1991-02)(Swedish User Group of Amiga)(SE)(PD)[WB].adf / AmigaUUCP / include / log.h < prev    next >
C/C++ Source or Header  |  1991-02-14  |  327b  |  17 lines

  1.  
  2. /*
  3.  *  LOG.H
  4.  *
  5.  *  (C) Copyright 1989-1990 by Matthew Dillon,  All Rights Reserved.
  6.  */
  7.  
  8. extern int     LogToStdout;
  9. extern int     LogLevel;
  10. extern char    *LogProgram;
  11. extern char    *LogHost;
  12. extern char    *LogWho;
  13. extern char    *LogFile;
  14.  
  15. #define DEBUG(level, msg, moremsg)  if (LogLevel > level) printf(msg, moremsg)
  16.  
  17.